home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsmodules.h < prev    next >
C/C++ Source or Header  |  2004-04-07  |  4KB  |  120 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsmodules.h subroutines:                              */
  34. /*       external modules (parsers)                             */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef HTS_MODULES
  39. #define HTS_MODULES
  40.  
  41. /* Function type to add links inside the module 
  42.   link : link to add (absolute or relative)
  43.   str : structure defined below
  44.   Returns 1 if the link was added, 0 if not
  45. */
  46. typedef struct htsmoduleStruct htsmoduleStruct;
  47. typedef int (* t_htsAddLink)(htsmoduleStruct* str, char* link);
  48.  
  49. /* Structure passed to the module */
  50. struct htsmoduleStruct {
  51.   /* Read-only elements */
  52.   char* filename;                 /* filename (C:\My Web Sites\...) */
  53.   int   size;                     /* size of filename (should be > 0) */
  54.   char* mime;                     /* MIME type of the object */
  55.   char* url_host;                 /* incoming hostname (www.foo.com) */
  56.   char* url_file;                 /* incoming filename (/bar/bar.gny) */
  57.   
  58.   /* Write-only */
  59.   char* err_msg;                  /* if an error occured, the error message (max. 1KB) */
  60.   
  61.   /* Read/Write */
  62.   int relativeToHtmlLink;         /* set this to 1 if all urls you pass to addLink
  63.                                   are in fact relative to the html file where your
  64.                                   module was originally */
  65.   
  66.   /* Callbacks */
  67.   t_htsAddLink addLink;           /* call this function when links are 
  68.                                   being detected. it if not your responsability to decide
  69.                                   if the engine will keep them, or not. */
  70.  
  71.   /* Optional */
  72.   char* localLink;                /* if non null, the engine will write there the local
  73.                                   relative filename of the link added by addLink(), or
  74.                                   the absolute path if the link was refused by the wizard */
  75.   int localLinkSize;              /* size of the optionnal buffer */
  76.   
  77.   /* User-defined */
  78.   void* userdef;                  /* can be used by callback routines
  79.                                   */
  80.  
  81.   /* ---- ---- ---- */
  82.  
  83.   /* Internal use - please don't touch */
  84.   void* liens;
  85.   void* opt;
  86.   void* back;
  87.   int back_max;
  88.   void* cache;
  89.   void* hashptr;
  90.   int numero_passe;
  91.   int add_tab_alloc;
  92.   /* */
  93.   int* lien_tot_;
  94.   int* ptr_;
  95.   int* lien_size_;
  96.   char** lien_buffer_;
  97.   /* Internal use - please don't touch */
  98.  
  99. };
  100.  
  101. /* Used to wrap module initialization */
  102. /* return 1 if init was ok */
  103. typedef int (*t_htsWrapperInit)(char *fn, char *args);
  104. typedef int (*t_htsWrapperExit)(void);
  105. typedef int (*t_htsWrapperPlugInit)(char *args);
  106.  
  107. /* Library internal definictions */
  108. #ifdef HTS_INTERNAL_BYTECODE
  109. extern void htspe_init(void);
  110. extern int hts_parse_externals(htsmoduleStruct* str);
  111.  
  112. extern int gz_is_available;
  113. extern int swf_is_available;
  114. extern int SSL_is_available;
  115. extern int V6_is_available;
  116. extern char WHAT_is_available[64];
  117. #endif
  118.  
  119. #endif
  120.